home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
emerald
/
emrldsys.lha
/
Language
/
Compiler
/
system.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-16
|
627b
|
32 lines
/*
* @(#)system.h 1.2 3/18/87
*/
#ifndef system_h
#define system_h
#ifndef NULL
#include <stdio.h>
#endif
#define Free(N) if ((int) (N) > 0x200) free((char *)(N));
#define DONTTESTALLOC
#ifdef DONTTESTALLOC
extern char *malloc(/* nBytes */);
/* unsigned int nBytes; */
extern char *calloc(/* nElements, nBytes */);
/* unsigned int nElement, nBytes; */
#else
extern int fmalloc(), fcalloc();
#define malloc(N) ((char *) fmalloc(N))
#define calloc(N, M) ((char *) fcalloc((N) * (M))
#endif
extern char *strcat(), *strcpy();
extern int atoi();
extern double atof();
extern int exit(/* status */);
/* int status; */
#endif